:root {
    --bg-clr: #0e0e12;
    --primary-clr: #161616;
    --secondary-clr: #1e2025;
    --gray-clr: #797979;
    --light-gray-clr: #a7a7a7;
    --white-clr: #ffffff;
    --red-clr: #ff697d;
    --green-clr: #32e444;
    --box-shadow: 0px 0px 0px 1px #ffffff14 inset;
    --input-bg: #1e2025;
    --card-bg: #18122a;
    --jazmina: "Jazmin Alt";
    --regular-font: "Syne";
    --medium-font: "Syne-Medium";
    --semibold-font: "Syne-SemiBold";
    --bold-font: "Syne-Bold";
    --extrabold-font: "Syne-ExtraBold";
}
:root body[dir=rtl] {
    --regular-font: "DroidKufi" !important;
    --medium-font: "DroidKufi-Medium" !important;
    --semibold-font: "Droid-Bold" !important;
    --bold-font: "Droid-Bold" !important;
    --extrabold-font: "DroidKufi-ExtraBold" !important;
}

/*-----------------------
    English Fonts
-------------------------*/
@font-face {
    font-family: "Syne";
    src: url("../../../../fonts/Syne-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Syne-Medium";
    src: url("../../../../fonts/Syne-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Syne-SemiBold";
    src: url("../../../../fonts/Syne-SemiBold.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Syne-Bold";
    src: url("../../../../fonts/Syne-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Syne-ExtraBold";
    src: url("../../../../fonts/Syne-ExtraBold.ttf");
    font-weight: normal;
    font-style: normal;
}
/*-----------------------
    Arabic Fonts
-------------------------*/
@font-face {
    font-family: "DroidKufi";
    src: url("../../../../fonts/DroidKufi-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DroidKufi-Medium";
    src: url("../../../../fonts/Droid Arabic Kufi.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Droid-Bold";
    src: url("../../../../fonts/Droid-Arabic-Kufi-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DroidKufi-ExtraBold";
    src: url("../../../../fonts/Droid Arabic Kufi Bold.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Jazmin Alt";
    src: url("../../../../fonts/JazminAlt-Medium.otf");
    font-weight: normal;
    font-style: normal;
}
.rtl {
    direction: rtl;
    text-align: right;
}
.ltr {
    direction: ltr;
    text-align: left;
}
.lang-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    background: #1E2025 !important;
    -webkit-box-shadow: 0 0 0 40px #1E2025 inset !important;
    -webkit-text-fill-color: #fff !important;
}
.collapse-content a {

    padding: 5px 10px;
    border-radius: 8px ;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 10px;
    width: 260px;
    height: 40px;
    font-weight: 700;
    font-size: 24px;

}
.collapse-content a:hover {
    background-image:radial-gradient(circle at 0% 0%, #fff, #fff);
    padding: 5px 10px;
    color: #1E251F;
}
.level-0{
    color: #00ff00;
}
.level-1 {
    color: orange;
}
.level-2 {
    color: red;
}
.share-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50% ;
    height: 50%;
    padding: 30px;
    border-radius: 10px;
    z-index: 50;
    background-color: #1D1C20;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 60;
}
.modal-close{
    font-size: 24px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #fff !important;
    fill: #fff !important;
}
.share-attachment{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.share-header{
    font-size: 24px;
    line-height: 25px;
    color: #fff;
    font-weight: 700 ;
}
.share-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;   
}
.share-content div div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    fill: #fff;
    border-radius: 50px ;
    width: 100%;
    height: 48px;
    padding: 20px;
}
.modal-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.copy-link-input{
    background-color: transparent ;
    color: #fff;
    padding: 10px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    outline: none;
    border: none;
}
.copy-link-input:focus {
    outline: none;
    box-shadow: none;
}
.material-icons{
    display:flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 840px) {
    .share-modal{
        width: 90% ;
    }
    .share-header{
        font-size: 20px;
    }
    .share-content div div{
        gap: 5px;
        background-color: transparent;
        padding: 5px;
    }
    .copy-link-input{
        font-size: 14px;
        padding: 5px;
    }
}
@media (max-width: 400px) {
    .share-modal{
        width: 95% ;
    }
    .share-header{
        font-size: 16px;
    }
}



input, textarea {
    color: white !important; ;
    caret-color: white !important;
}

input::selection, textarea::selection {
    background: #555 !important;
    color: white !important;
}

body[dir="rtl"] input[type="tel"]{
    direction: rtl  !important;
}
.PasswordChangeSuccessfully{
    background-color: #1e2025;
    color: #27ae60;
    padding: 10px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 60px ;
}



.modal-close{
    cursor: pointer;
}
.modal.is-active {
    display: flex !important;
}
#share-modal-backdrop{
    display: none;
}



.course__rating:hover{
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 251, 0, 0.5);
}

.custome__btn{
    cursor: pointer;
    width: 50%;
    height: 90px;
    font-size: x-large;
}
.status-1{
    background-color: #E09D1C ;
}
.status-2{
    background-color: #4CAF50 ;
}
.status-3{
    background-color: #F44336 ;
}
.status-4{
    background-color: #18E2F0;
}

.page-header{
    min-height: 300px !important;
}